home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-05-21 | 473 b | 27 lines |
- /* $Id: InfoPanel.java,v 1.3 1996/03/28 01:16:32 djun Exp $
-
- File: InfoPanel.java
-
- Author: Djun M. Kim
- Copyright (c) 1996 Djun M. Kim. All rights reserved.
-
- */
-
- import java.awt.*;
-
- public class InfoPanel extends Panel {
-
- TextField textf = new TextField("Map Info");
-
- InfoPanel(MapInfo target) {
- setLayout(new GridLayout(1,1));
- textf.setEditable(false);
- add(textf);
- }
-
- public void display(String s) {
- this.textf.setText(s);
- }
- }
-
-